40b724705f339910d4fffa69347ba1c9fead809d,eclipsePlugin/src/de/tobject/findbugs/properties/FindbugsPropertyPage.java,FindbugsPropertyPage,isEnabled,#,819
Before Change
boolean result = false;
try {
if (this.project.hasNature(FindbugsPlugin.NATURE_ID)) {
result = true;
}
}
After Change
*/
private boolean isEnabled() {
try {
return project.hasNature(FindbugsPlugin.NATURE_ID);
} catch (CoreException e) {
FindbugsPlugin.getDefault().logException(e,
"Error while testing FindBugs nature for project " + project);